type encoding/json.decodeState

23 uses

	encoding/json (current package)
		decode.go#L100: 	var d decodeState
		decode.go#L170: func (d *decodeState) unmarshal(v any) error {
		decode.go#L210: type decodeState struct {
		decode.go#L222: func (d *decodeState) readIndex() int {
		decode.go#L231: func (d *decodeState) init(data []byte) *decodeState {
		decode.go#L245: func (d *decodeState) saveError(err error) {
		decode.go#L252: func (d *decodeState) addErrorContext(err error) error {
		decode.go#L264: func (d *decodeState) skip() {
		decode.go#L279: func (d *decodeState) scanNext() {
		decode.go#L291: func (d *decodeState) scanWhile(op int) {
		decode.go#L315: func (d *decodeState) rescanLiteral() {
		decode.go#L356: func (d *decodeState) value(v reflect.Value) error {
		decode.go#L401: func (d *decodeState) valueQuoted() any {
		decode.go#L500: func (d *decodeState) array(v reflect.Value) error {
		decode.go#L606: func (d *decodeState) object(v reflect.Value) error {
		decode.go#L843: func (d *decodeState) convertNumber(s string) (any, error) {
		decode.go#L861: func (d *decodeState) literalStore(item []byte, v reflect.Value, fromQuoted bool) error {
		decode.go#L1040: func (d *decodeState) valueInterface() (val any) {
		decode.go#L1057: func (d *decodeState) arrayInterface() []any {
		decode.go#L1083: func (d *decodeState) objectInterface() map[string]any {
		decode.go#L1134: func (d *decodeState) literalInterface() any {
		stream.go#L17: 	d       decodeState